projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
550c12a
)
* xdisp.c (string_from_display_spec): Don't use int for vector length.
author
Paul Eggert
<eggert@cs.ucla.edu>
Sat, 24 Sep 2011 16:28:25 +0000
(09:28 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sat, 24 Sep 2011 16:28:25 +0000
(09:28 -0700)
src/ChangeLog
patch
|
blob
|
history
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index efaa386b08b3f48084fa54a0102bb33acc91ac6e..ef31b918661c8577bfcd3561826bfe4bbde4eadf 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,5
+1,7
@@
2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
+ * xdisp.c (string_from_display_spec): Don't use int for vector length.
+
* indent.c (Fvertical_motion): Fix == vs = typo.
2011-09-24 Eli Zaretskii <eliz@gnu.org>
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 3f545fae248f54160c3853a487883183a57f5ecc..a556236835c18af7800ee4bba572ef73be15d48d 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-1226,7
+1226,7
@@
string_from_display_spec (Lisp_Object spec)
}
else if (VECTORP (spec))
{
-
in
t i;
+
ptrdiff_
t i;
for (i = 0; i < ASIZE (spec); i++)
{